home *** CD-ROM | disk | FTP | other *** search
- // Copyright (c) 1994, William Wagner
- // All Rights reserved.
- //
- // This source is a portion of a shareware program. It may be distributed
- // only in its entirety. The copyright statements must be included with any
- // reproduction of this source.
- //
-
- #ifndef __APPDEFS_H__
- #define __APPDEFS_H__
- // This file exists for compiler speed. I give a forward declaration for
- // all classes here. This file is included in stdafx.h. This means that
- // all files know the names of the classes, but not necessarily their
- // full definitions. So... this avoids many strange compiler include
- // entanglements.
-
- // There is an interesting side-note related to the debugger.
- //For some reason, if this gets included, the debugger can't find
- // the data member inside these classes
- // hmm...
- class CCassetteApp;
- class CMainFrame;
- class CCassetteDoc;
- class CTapeView;
- class CPrintView;
- #endif
-